home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 (Developer) [x86] / NeXT Step 3.1 Intel dev.cdr.dmg / NextDeveloper / Examples / IndexingKit / Ledger / GlobalThings.h < prev    next >
Text File  |  1993-01-25  |  425b  |  18 lines

  1. #import <objc/Object.h>
  2.  
  3. #define GLOBALVARIDENT "Global_Things"
  4. @interface GlobalThings:Object
  5. {
  6.     int currentSerial;
  7.     int runTimeHandle;
  8. }
  9. - init;
  10. - (const char *)identification;
  11. // implement IXRecordTranscription protocol for faster serialization.
  12. - source:aSource didReadRecord:(unsigned)record;
  13. - source:aSource willWriteRecord:(unsigned)record; 
  14. - (int )currentSerial;
  15. - (int )consumeSerial;
  16. - (unsigned int)handle;
  17. @end
  18.